home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
vbusfboxgar.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
402b
|
15 lines
/* lists all the buses and their farebox and garage assignments
omitted assignments will show up as null entries because of the outer joins
*/
CREATE OR REPLACE VIEW VBUSFBOXGAR AS SELECT
BUS.BUS_ID bus, FAREBOX.GLID fbox, GARAGE.GARAGE_ID garage
FROM
BUS BUS,
FAREBOX FAREBOX,
GARAGE GARAGE
WHERE
( BUS.GARAGEID=GARAGE.GLID(+) ) AND
( FAREBOX.LOCATION(+) =BUS.GLID );